High-security seed generation

Generic guide

Regardless of what tools you have available, the underlying challenge is to randomly generate some binary data. This can be done by hand, but it may be more difficult than you think. Computers can often guess what sequences a human brain will think of as random, and computers also might have millions of chances to guess. Going through a book getting the first letter from every page might seem good, but it would be biased in favor of the most common letters.

It might help to have layers to your process. For example, use the combined number of letters in the first several words of the last page; divided by the page number; divided again by the number of letters in the last words of each preceding page until a very long decimal is created; the sequence after the decimal should be pretty random.

You don't have to use books or copy the above method, it's just a suggestion. The point is, find a way to generate random numbers. And make sure the numbers you're generating are random, not following any predictable pattern. Anyway, you get the idea.

I get the idea

All seed generation methods